@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+Arabic:wght@100..900&family=UnifrakturCook:wght@700&display=swap');

/* General Reset */
body {
  font-family: "Noto Sans Arabic", sans-serif !important;
    margin: 0;
    padding: 0;
    color: #333; /* Standard text color */
}
.navbar-1{
    z-index: 1000;

}
.nav-link{
    color: white !important;
    margin-left: 20px;
}
/* Container */
.containerForm {
    max-width: 850px;
    margin: 50px auto;
    background-color: #ffffff; /* White card background */
    padding: 30px;
    border-radius: 10px;
 }
.bg-primary
{
    background-color: #017cc2 !important;
}
 .icon-first{
    border-radius: 20px;
 }
/* Heading */
h1 {
    font-weight: bold;
    color: #34495e; /* Deep blue-gray */
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}
.bg-primary{
    background-color: #017cc2 !important;
}
/* Labels */
label {
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    font-size: 1rem;
}
.alert-1{
    background-color: #017cc2;
}
/* Input Fields */
.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 1rem;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #5c9cff; /* Light blue focus */
    box-shadow: 0 0 5px rgba(92, 156, 255, 0.4); /* Light blue glow */
    outline: none;
}
.needBackground{
    background-image: url('/public/storage/images/includes/colorful-logo.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
}
/* Checkbox and Radio Inputs */
input[type="checkbox"], input[type="radio"] {
    margin-right: 10px;
    accent-color: #5c9cff; /* Blue for checkboxes/radios */
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    background-color: #017cc2; /* Light blue */
    border: none;
    color: white;  
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    width: 30%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.text-primary{
    color: #017cc2 !important;
}
.btn:hover {
    background-color: #417ed0; /* Darker blue on hover */
}

/* Alerts */
.alert {
    font-size: 1rem;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.heroPage{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    top: 0;
    z-index: 1000;
}
.heroPage h1{
font-weight: bold;

color: white;
}

.heroPage p{
        color: #017cc2;
}

#videoContainer {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

#videoYoutube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#videoContainer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.7; /* Adjust the opacity here */
    z-index: -1;
}
.primary-h{
    color: #017cc2;
    font-weight: bold;
}
.aboutusImg{
    border-radius: 20px;
}
   .grid {
    margin: 0 auto;
  }
  .grid-item {
    width: 200px; /* Set the width of each item */
    margin-bottom: 10px;
    background: #ddd;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
  }
 

  .banner{
background-size: cover;
background-repeat: none;
background-position: center;
position: relative;
min-height: 70vh;
z-index: 0;
  }
.banner *{
    z-index: 1000;
    color: white;
}
.banner {
    display: flex;
    justify-content: center;
    text-align: center;
}
  .banner::after{
    content: '';
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    height: 70vh  ;
    width: 100%;
    opacity: 40%;
    z-index: 1;
  }

  
.product-card {
    background-color: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-card__description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card__btn {
    background-color: #017cc2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card__btn:hover {
    background-color: #035788;
}

@media (max-width: 480px) {
    .cont {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 1.3rem;
    }

    .product-card__description {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .product-card__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
/* Responsive Design----------------------------------------------------------------------------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    label {
        font-size: 0.9rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn {
        font-size: 1rem;
    }
}

/* Shadow Effect for Focused Areas */
.form-check-input:focus, 
.form-control:focus {
    box-shadow: 0 4px 10px rgba(92, 156, 255, 0.3); /* Subtle blue glow */
}

/* Image Preview */
.img-thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover; /* Ensures the image doesn't stretch */
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background-color: #eaeaea;
    margin: 30px 0;
}

/* Inline Form Check */
.form-check-inline {
    margin-right: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align RTL direction */
}

/* Optional: Rounded File Input */
input[type="file"] {
    border: 1px dashed #ced4da;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

input[type="file"]:hover {
    border-color: #5c9cff;
}
